home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-03-05 | 414 b | 26 lines |
- //
- // ConstantPoolHelper.java
- //
- // (C) Copyright 1998 Microsoft Corporation, All rights reserved.
- //
-
- package com.ms.debug;
-
- public class ConstantPoolHelper
- {
- protected IRemoteClassField m_ircf;
-
- public ConstantPoolHelper(IRemoteClassField ircf)
- {
- m_ircf = ircf;
- }
-
- public native byte[] GetConstantPoolItem(int niItem);
-
- static
- {
- System.loadLibrary("JDbgHlpr");
- }
- }
-
-